home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Mac / Modules / macspeechmodule.c < prev   
Text File  |  1995-03-04  |  11KB  |  553 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* xx module */
  26.  
  27. #include "allobjects.h"
  28. #include "modsupport.h"
  29.  
  30. #include <GestaltEqu.h>
  31. #include "Speech.h"
  32.  
  33. #ifdef __MWERKS__
  34. #include <Strings.h>
  35. #define c2pstr C2PStr
  36. #define p2cstr P2CStr
  37. #else
  38. #include "pascal.h"
  39. #endif /* __MWERKS__ */
  40.  
  41. #ifdef __powerc
  42. #include <FragLoad.h>
  43. int lib_available;
  44. #endif /* __powerc */
  45.  
  46. /* Somehow the Apple Fix2X and X2Fix don't do what I expect */
  47. #define fixed2double(x) (((double)(x))/32768.0)
  48. #define double2fixed(x) ((Fixed)((x)*32768.0))
  49.  
  50. char *CurrentSpeech;
  51. object *ms_error_object;
  52. int speech_available;
  53.  
  54. static
  55. init_available() {
  56.     OSErr err;
  57.     long result;
  58.  
  59. #ifdef __powerc
  60.     lib_available = ((ProcPtr)SpeakString != (ProcPtr)0);
  61. #endif
  62.     err = Gestalt(gestaltSpeechAttr, &result);
  63.     if ( err == noErr && (result & (1<<gestaltSpeechMgrPresent)))
  64.         return 1;
  65.     return 0;
  66. }
  67.  
  68. static
  69. check_available() {
  70.     if ( !speech_available ) {
  71.         err_setstr(ms_error_object, "Speech Mgr not available");
  72.         return 0;
  73.     }
  74. #ifdef __powerc
  75.     if ( !lib_available ) {
  76.         err_setstr(ms_error_object, "Speech Mgr available, but shared lib missing");
  77.         return 0;
  78.     }
  79. #endif
  80.     return 1;
  81. }
  82.  
  83. /* -------------
  84. **
  85. ** Part one - the speech channel object
  86. */
  87. typedef struct {
  88.     OB_HEAD
  89.     SpeechChannel chan;
  90.     object *curtext;    /* If non-NULL current text being spoken */
  91. } scobject;
  92.  
  93. staticforward typeobject sctype;
  94.  
  95. #define is_scobject(v)        ((v)->ob_type == &sctype)
  96.  
  97. static scobject *
  98. newscobject(arg)
  99.     VoiceSpec *arg;
  100. {
  101.     scobject *self;
  102.     OSErr err;
  103.     
  104.     self = NEWOBJ(scobject, &sctype);
  105.     if (self == NULL)
  106.         return NULL;
  107.     if ( (err=NewSpeechChannel(arg, &self->chan)) != 0) {
  108.         DECREF(self);
  109.         return (scobject *)PyErr_Mac(ms_error_object, err);
  110.     }
  111.     self->curtext = NULL;
  112.     return self;
  113. }
  114.  
  115. /* sc methods */
  116.  
  117. static void
  118. sc_dealloc(self)
  119.     scobject *self;
  120. {
  121.     DisposeSpeechChannel(self->chan);
  122.     DEL(self);
  123. }
  124.  
  125. static object *
  126. sc_Stop(self, args)
  127.     scobject *self;
  128.     object *args;
  129. {
  130.     OSErr err;
  131.     
  132.     if (!getnoarg(args))
  133.         return NULL;
  134.     if ((err=StopSpeech(self->chan)) != 0) {
  135.         PyErr_Mac(ms_error_object, err);
  136.         return NULL;
  137.     }
  138.     if ( self->curtext ) {
  139.         DECREF(self->curtext);
  140.         self->curtext = NULL;
  141.     }
  142.     INCREF(None);
  143.     return None;
  144. }
  145.  
  146. static object *
  147. sc_SpeakText(self, args)
  148.     scobject *self;
  149.     object *args;
  150. {
  151.     OSErr err;
  152.     char *str;
  153.     int len;
  154.     
  155.     if (!getargs(args, "s#", &str, &len))
  156.         return NULL;
  157.     if ( self->curtext ) {
  158.         StopSpeech(self->chan);
  159.         DECREF(self->curtext);
  160.         self->curtext = NULL;
  161.     }
  162.     if ((err=SpeakText(self->chan, (Ptr)str, (long)len)) != 0) {
  163.         PyErr_Mac(ms_error_object, err);
  164.         return 0;
  165.     }
  166.     (void)getargs(args, "O", &self->curtext);    /* Or should I check this? */
  167.     INCREF(self->curtext);
  168.     INCREF(None);
  169.     return None;
  170. }
  171.  
  172. static object *
  173. sc_GetRate(self, args)
  174.     scobject *self;
  175.     object *args;
  176. {
  177.     OSErr err;
  178.     Fixed farg;
  179.     
  180.     if (!getnoarg(args))
  181.         return NULL;
  182.     if ((err=GetSpeechRate(self->chan, &farg)) != 0) {
  183.         PyErr_Mac(ms_error_object, err);
  184.         return 0;
  185.     }
  186.     return newfloatobject(fixed2double(farg));
  187. }
  188.  
  189. static object *
  190. sc_GetPitch(self, args)
  191.     scobject *self;
  192.     object *args;
  193. {
  194.     OSErr err;
  195.     Fixed farg;
  196.     
  197.     if (!getnoarg(args))
  198.         return NULL;
  199.     if ((err=GetSpeechPitch(self->chan, &farg)) != 0) {
  200.         PyErr_Mac(ms_error_object, err);
  201.         return 0;
  202.     }
  203.     return newfloatobject(fixed2double(farg));
  204. }
  205.  
  206. static object *
  207. sc_SetRate(self, args)
  208.     scobject *self;
  209.     object *args;
  210. {
  211.     OSErr err;
  212.     double darg;
  213.     
  214.     if (!getargs(args, "d", &darg))
  215.         return NULL;
  216.     if ((err=SetSpeechRate(self->chan, double2fixed(darg))) != 0) {
  217.         PyErr_Mac(ms_error_object, err);
  218.         return 0;
  219.     }
  220.     INCREF(None);
  221.     return None;
  222. }
  223.  
  224. static object *
  225. sc_SetPitch(self, args)
  226.     scobject *self;
  227.     object *args;
  228. {
  229.     OSErr err;
  230.     double darg;
  231.     
  232.     if (!getargs(args, "d", &darg))
  233.         return NULL;
  234.     if ((err=SetSpeechPitch(self->chan, double2fixed(darg))) != 0) {
  235.         PyErr_Mac(ms_error_object, err);
  236.         return NULL;
  237.     }
  238.     INCREF(None);
  239.     return None;
  240. }
  241.  
  242. static struct methodlist sc_methods[] = {
  243.     {"Stop",        (method)sc_Stop},
  244.     {"SetRate",        (method)sc_SetRate},
  245.     {"GetRate",        (method)sc_GetRate},
  246.     {"SetPitch",    (method)sc_SetPitch},
  247.     {"GetPitch",    (method)sc_GetPitch},
  248.     {"SpeakText",    (method)sc_SpeakText},
  249.     {NULL,            NULL}        /* sentinel */
  250. };
  251.  
  252. static object *
  253. sc_getattr(self, name)
  254.     scobject *self;
  255.     char *name;
  256. {
  257.     return findmethod(sc_methods, (object *)self, name);
  258. }
  259.  
  260. static typeobject sctype = {
  261.     OB_HEAD_INIT(&Typetype)
  262.     0,            /*ob_size*/
  263.     "MacSpeechChannel",            /*tp_name*/
  264.     sizeof(scobject),    /*tp_basicsize*/
  265.     0,            /*tp_itemsize*/
  266.     /* methods */
  267.     (destructor)sc_dealloc, /*tp_dealloc*/
  268.     0,            /*tp_print*/
  269.     (getattrfunc)sc_getattr, /*tp_getattr*/
  270.     0,             /*tp_setattr*/
  271.     0,            /*tp_compare*/
  272.     0,            /*tp_repr*/
  273.     0,            /*tp_as_number*/
  274.     0,            /*tp_as_sequence*/
  275.     0,            /*tp_as_mapping*/
  276.     0,            /*tp_hash*/
  277. };
  278.  
  279. /* -------------
  280. **
  281. ** Part two - the voice object
  282. */
  283. typedef struct {
  284.     OB_HEAD
  285.     int        initialized;
  286.     VoiceSpec    vs;
  287.     VoiceDescription vd;
  288. } mvobject;
  289.  
  290. staticforward typeobject mvtype;
  291.  
  292. #define is_mvobject(v)        ((v)->ob_type == &mvtype)
  293.  
  294. static mvobject *
  295. newmvobject()
  296. {
  297.     mvobject *self;
  298.     self = NEWOBJ(mvobject, &mvtype);
  299.     if (self == NULL)
  300.         return NULL;
  301.     self->initialized = 0;
  302.     return self;
  303. }
  304.  
  305. static int
  306. initmvobject(self, ind)
  307.     mvobject *self;
  308.     int ind;
  309. {
  310.     OSErr err;
  311.     
  312.     if ( (err=GetIndVoice((short)ind, &self->vs)) != 0 ) {
  313.         PyErr_Mac(ms_error_object, err);
  314.         return 0;
  315.     }
  316.     if ( (err=GetVoiceDescription(&self->vs, &self->vd, sizeof self->vd)) != 0) {
  317.         PyErr_Mac(ms_error_object, err);
  318.         return 0;
  319.     }
  320.     self->initialized = 1;
  321.     return 1;
  322. /* mv methods */
  323.  
  324. static void
  325. mv_dealloc(self)
  326.     mvobject *self;
  327. {
  328.     DEL(self);
  329. }
  330.  
  331. static object *
  332. mv_getgender(self, args)
  333.     mvobject *self;
  334.     object *args;
  335. {
  336.     object *rv;
  337.     
  338.     if (!getnoarg(args))
  339.         return NULL;
  340.     if (!self->initialized) {
  341.         err_setstr(ms_error_object, "Uninitialized voice");
  342.         return NULL;
  343.     }
  344.     rv = newintobject(self->vd.gender);
  345.     return rv;
  346. }
  347.  
  348. static object *
  349. mv_newchannel(self, args)
  350.     mvobject *self;
  351.     object *args;
  352. {    
  353.     if (!getnoarg(args))
  354.         return NULL;
  355.     if (!self->initialized) {
  356.         err_setstr(ms_error_object, "Uninitialized voice");
  357.         return NULL;
  358.     }
  359.     return (object *)newscobject(&self->vs);
  360. }
  361.  
  362. static struct methodlist mv_methods[] = {
  363.     {"GetGender",    (method)mv_getgender},
  364.     {"NewChannel",    (method)mv_newchannel},
  365.     {NULL,        NULL}        /* sentinel */
  366. };
  367.  
  368. static object *
  369. mv_getattr(self, name)
  370.     mvobject *self;
  371.     char *name;
  372. {
  373.     return findmethod(mv_methods, (object *)self, name);
  374. }
  375.  
  376. static typeobject mvtype = {
  377.     OB_HEAD_INIT(&Typetype)
  378.     0,            /*ob_size*/
  379.     "MacVoice",            /*tp_name*/
  380.     sizeof(mvobject),    /*tp_basicsize*/
  381.     0,            /*tp_itemsize*/
  382.     /* methods */
  383.     (destructor)mv_dealloc, /*tp_dealloc*/
  384.     0,            /*tp_print*/
  385.     (getattrfunc)mv_getattr, /*tp_getattr*/
  386.     0,            /*tp_setattr*/
  387.     0,            /*tp_compare*/
  388.     0,            /*tp_repr*/
  389.     0,            /*tp_as_number*/
  390.     0,            /*tp_as_sequence*/
  391.     0,            /*tp_as_mapping*/
  392.     0,            /*tp_hash*/
  393. };
  394.  
  395.  
  396. /* -------------
  397. **
  398. ** Part three - The module interface
  399. */
  400.  
  401. /* See if Speech manager available */
  402.  
  403. static object *
  404. ms_Available(self, args)
  405.     object *self; /* Not used */
  406.     object *args;
  407. {
  408.     
  409.     if (!getnoarg(args))
  410.         return NULL;
  411.     return newintobject(speech_available);
  412. }
  413.  
  414. /* Count number of busy speeches */
  415.  
  416. static object *
  417. ms_Busy(self, args)
  418.     object *self; /* Not used */
  419.     object *args;
  420. {
  421.     short result;
  422.     
  423.     if (!getnoarg(args))
  424.         return NULL;
  425.     if ( !check_available() )
  426.         return NULL;
  427.     result = SpeechBusy();
  428.     return newintobject(result);
  429. }
  430.  
  431. /* Say something */
  432.  
  433. static object *
  434. ms_SpeakString(self, args)
  435.     object *self; /* Not used */
  436.     object *args;
  437. {
  438.     OSErr err;
  439.     char *str;
  440.     int len;
  441.     
  442.     if (!getstrarg(args, &str))
  443.         return NULL;
  444.     if ( !check_available())
  445.         return NULL;
  446.     if (CurrentSpeech) {
  447.         /* Free the old speech, after killing it off
  448.         ** (note that speach is async and c2pstr works inplace)
  449.         */
  450.         SpeakString("\p");
  451.         free(CurrentSpeech);
  452.     }
  453.     len = strlen(str);
  454.     CurrentSpeech = malloc(len+1);
  455.     strcpy(CurrentSpeech, str);
  456.     err = SpeakString(c2pstr(CurrentSpeech));
  457.     if ( err ) {
  458.         PyErr_Mac(ms_error_object, err);
  459.         return NULL;
  460.     }
  461.     INCREF(None);
  462.     return None;
  463. }
  464.  
  465.  
  466. /* Count number of available voices */
  467.  
  468. static object *
  469. ms_CountVoices(self, args)
  470.     object *self; /* Not used */
  471.     object *args;
  472. {
  473.     short result;
  474.     
  475.     if (!getnoarg(args))
  476.         return NULL;
  477.     if ( !check_available())
  478.         return NULL;
  479.     CountVoices(&result);
  480.     return newintobject(result);
  481. }
  482.  
  483. static object *
  484. ms_GetIndVoice(self, args)
  485.     object *self; /* Not used */
  486.     object *args;
  487. {
  488.     mvobject *rv;
  489.     long ind;
  490.     
  491.     if( !getargs(args, "i", &ind))
  492.         return NULL;
  493.     if ( !check_available() )
  494.         return NULL;
  495.     rv = newmvobject();
  496.     if ( !initmvobject(rv, ind) ) {
  497.         DECREF(rv);
  498.         return NULL;
  499.     }
  500.     return (object *)rv;
  501. }
  502.  
  503.  
  504. static object *
  505. ms_Version(self, args)
  506.     object *self; /* Not used */
  507.     object *args;
  508. {
  509.     NumVersion v;
  510.     
  511.     if (!getnoarg(args))
  512.         return NULL;
  513.     if ( !check_available())
  514.         return NULL;
  515.     v = SpeechManagerVersion();
  516.     return newintobject(*(int *)&v);
  517. }
  518.  
  519.  
  520. /* List of functions defined in the module */
  521.  
  522. static struct methodlist ms_methods[] = {
  523.     {"Available",    ms_Available},
  524.     {"CountVoices",    ms_CountVoices},
  525.     {"Busy",        ms_Busy},
  526.     {"SpeakString",    ms_SpeakString},
  527.     {"GetIndVoice", ms_GetIndVoice},
  528.     {"Version",        ms_Version},
  529.     {NULL,        NULL}        /* sentinel */
  530. };
  531.  
  532. /* Initialization function for the module (*must* be called initmacspeech) */
  533.  
  534. void
  535. initmacspeech()
  536. {
  537.     object *m, *d;
  538.  
  539.     speech_available = init_available();
  540.     /* Create the module and add the functions */
  541.     m = initmodule("macspeech", ms_methods);
  542.  
  543.     /* Add some symbolic constants to the module */
  544.     d = getmoduledict(m);
  545.     ms_error_object = newstringobject("macspeech.error");
  546.     dictinsert(d, "error", ms_error_object);
  547.  
  548.     /* Check for errors */
  549.     if (err_occurred())
  550.         fatal("can't initialize module macspeech");
  551. }
  552.